home *** CD-ROM | disk | FTP | other *** search
- <?php
- ////////////////////////////////////////////////////////////////////////////////
- // <!--Copyright (c) 2005 Pure Networks Inc. All rights reserved.-->
- ////////////////////////////////////////////////////////////////////////////////
- //
- // Build: 3.0.6121.0 (Stable)
- // $Revision: #1 $
- //
- ////////////////////////////////////////////////////////////////////////////////////
- // GLOBAL TOP PANELS - PANELS DEFINED HERE ARE VISIBLE ON EVERY PAGE THAT SHOWS PANELS
- // To make non-global, delete from here and follow the directions below to place in
- // only the specific locations you want the panel to appear. These panels appear _FIRST_
- ////////////////////////////////////////////////////////////////////////////////////
- require "_network_map.php";
- switch ($sNavPage)
- {
- //////////////////////////////////////////
- // which panels do we show in which cases?
- //////////////////////////////////////////
- case "folders":
- // Folder view - This is the page that presents a folder/share's contents.
- require "_tasks_panel.php";
- break;
- case "details":
- // Details view - This is the page that presents a mid-size image with its details.
- require "_details_panel.php";
- require "_tasks_panel.php";
- break;
- case "share":
- // Share list view - This is the page that lists all the available shares.
- require "_tasks_panel.php";
- break;
- case "help":
- // Help Page - This is the page that displays the help.
- require "_tasks_panel.php";
- break;
- case "preferences":
- // Preferences Page - This is the page that allows a site owner to change preferecnes.
- require "_tasks_panel.php";
- break;
- default:
- // This configuration is a fallback in case someone adds a custom page of some sort and forgets
- // to add their case to the list above. This makes sure that these panels are always shown
- // if the panels.php file is ever included.
- require "_tasks_panel.php";
- break;
- }
- ////////////////////////////////////////////////////////////////////////////////////
- // GLOBAL BOTTOM PANELS - PANELS DEFINED HERE ARE VISIBLE ON EVERY PAGE THAT SHOWS PANELS
- // To make non-global, delete from here and follow the directions below to place in
- // only the specific locations you want the panel to appear. These panels appear _LAST_
- ////////////////////////////////////////////////////////////////////////////////////
- ?>